home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo ####################################################################
- echo # #
- echo # RFA manual print utility #
- echo # -------------------------------- #
- echo # #
- echo # This batch will print the file RFA.DOC using the wonderful #
- echo # SAVETREEs utility, and redirectioning the TYPE command to #
- echo # the standard printer (PRN:). #
- echo # #
- echo # Press any key for more infos about SAVTREEs. #
- echo # #
- echo ####################################################################
- pause >nul
- SAVETREE
- GETCH Do you want to print RFA.DOC using SAVETREEs (y/n) ?,y,Y,n,N; /U
- if errorlevel 89 goto YES
- if errorlevel 78 goto NO
- :YES
- SAVETREE rfa.doc
- echo Please, insert the paper and switch the printer on
- pause
- type RFA.rgt >prn:
- echo Please, turn back the paper
- pause
- type RFA.lft >prn:
- del RFA.rgt
- del RFA.lft
- echo Done!
- :NO
-